home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / libcs / errmsg.c < prev    next >
C/C++ Source or Header  |  1995-06-12  |  2KB  |  71 lines

  1. /*
  2.  * Copyright (c) 1990 Carnegie Mellon University
  3.  * All Rights Reserved.
  4.  * 
  5.  * Permission to use, copy, modify and distribute this software and its
  6.  * documentation is hereby granted, provided that both the copyright
  7.  * notice and this permission notice appear in all copies of the
  8.  * software, derivative works or modified versions, and any portions
  9.  * thereof, and that both notices appear in supporting documentation.
  10.  *
  11.  * THE SOFTWARE IS PROVIDED "AS IS" AND CARNEGIE MELLON UNIVERSITY
  12.  * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
  13.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.  IN NO EVENT
  14.  * SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR ANY SPECIAL, DIRECT,
  15.  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  16.  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
  17.  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  18.  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  19.  *
  20.  * Users of this software agree to return to Carnegie Mellon any
  21.  * improvements or extensions that they make and grant Carnegie the
  22.  * rights to redistribute these changes.
  23.  *
  24.  * Export of this software is permitted only after complying with the
  25.  * regulations of the U.S. Deptartment of Commerce relating to the
  26.  * Export of Technical Data.
  27.  */
  28. /*****************************************************************
  29.  * HISTORY
  30.  * $Log:    errmsg.c,v $
  31.  * Revision 1.2  90/12/11  17:52:09  mja
  32.  *     Add copyright/disclaimer for distribution.
  33.  * 
  34.  * 04-Mar-85  Rudy Nedved (ern) at Carnegie-Mellon University
  35.  *    Create a CMU version of the BBN errmsg routine from scratch. It
  36.  *    differs from the BBN errmsg routine in the fact that it uses a
  37.  *    negative value to indicate using the current errno value...the
  38.  *    BBN uses a negative OR zero value.
  39.  */
  40.  
  41. extern int    errno;
  42. extern int    sys_nerr;
  43. extern char    *sys_errlist[];
  44.  
  45. static char *itoa(p,n)
  46. char *p;
  47. unsigned n;
  48. {
  49.     if (n >= 10)
  50.     p =itoa(p,n/10);
  51.     *p++ = (n%10)+'0';
  52.     return(p);
  53. }
  54.  
  55. char *errmsg(cod)
  56. int cod;
  57. {
  58.     static char unkmsg[] = "Unknown error ";
  59.     static char unk[sizeof(unkmsg)+11];        /* trust us */
  60.  
  61.     if (cod < 0) cod = errno;
  62.  
  63.     if((cod >= 0) && (cod < sys_nerr))
  64.         return(sys_errlist[cod]);
  65.  
  66.     strcpy(unk,unkmsg);
  67.     *itoa(&unk[sizeof(unkmsg)-1],cod) = '\0';
  68.  
  69.     return(unk);
  70. }
  71.